.main-hero {
    background: linear-gradient(89.53deg, rgba(0, 0, 0, 0.8) 38.02%, rgba(0, 0, 0, 0.3) 60.4%, rgba(0, 0, 0, 0) 71.79%), url("../../../assets/mergers-and-acquisitions-min.png") center / cover no-repeat;
    height: 100vh;
    padding: 32px 0px;
    display: flex;
    align-items: flex-end;
    position: relative;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.3);
}

.hero-header {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-header>h1 {
    width: 60%;
    font-family: Urbanist, sans-serif;
    font-size: 3.14rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
}

.hero-header>p {
    width: 50%;
    font-family: Plus Jakarta Sans;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    color: #ffffff;
}

@media screen and (max-width:768px) {
    .main-hero {
        background: linear-gradient(180deg, rgba(137, 137, 137, 0) 0%, #000000 100%), url("../../../assets/mergers-and-acquisitions-min.png") center / cover no-repeat;
        padding: 0;
        align-items: center;
    }

    .hero-header {
        padding: 40px;
    }

    .hero-header>h1 {
        width: 100%;
    }

    .hero-header>p {
        width: 100%;
    }

}

@media screen and (max-width:430px) {
    .main-hero {
        padding: 20px;
    }

    .hero-header>h1 {
        width: 100%;
        font-family: Urbanist;
        font-size: 2.617rem;
        font-weight: 700;
        text-align: left;
        text-underline-position: from-font;
        text-decoration-skip-ink: none;
        color: #ffffff;
    }

    .hero-header>p {
        width: 100%;
    }
}



/* Valuation Introductory Section */
.valuation-intro-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* Part 1: Valuation Advisory Overview */
.valuation-intro-part1 {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    padding: 0;
}

.valuation-intro-left {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.valuation-section-label {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin: 0;
}

.valuation-intro-left h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
    color: #141E47;
    margin: 0;
}

.valuation-intro-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.valuation-intro-right p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    color: #121212;
    margin: 0;
}

.valuation-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.valuation-bullet-list li {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    color: #121212;
    position: relative;
    padding-left: 24px;
}

.valuation-bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #141E47;
}

/* Part 2: Valuation Capabilities */
.valuation-intro-part2 {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 50px 0;
}

.valuation-capabilities-header {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: center;
}

.capabilities-line {
    flex: 1;
    height: 1px;
    background-color: #d0d0d0;
    max-width: 200px;
}

.valuation-capabilities-header h3 {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
    margin: 0;
    white-space: nowrap;
}

.valuation-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.capability-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 16px;
    position: relative;
}

.capability-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: #e0e0e0;
}

.capability-item h4 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    color: #141E47;
    margin: 0;
}

.capability-item p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #121212;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .valuation-intro-part1 {
        gap: 48px;
    }

    .valuation-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .capability-item:nth-child(2n)::after {
        display: none;
    }

    .capability-item:nth-child(2)::after {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .valuation-intro-section {
        padding: 64px 0;
        gap: 64px;
    }

    .valuation-intro-part1 {
        flex-direction: column;
        gap: 32px;
        padding: 0 32px;
    }

    .valuation-intro-left,
    .valuation-intro-right {
        width: 100%;
    }

    .valuation-intro-left h2 {
        font-size: 2.2rem;
    }

    .valuation-intro-part2 {
        padding: 0 32px;
        gap: 32px;
    }

    .valuation-capabilities-header {
        gap: 16px;
    }

    .capabilities-line {
        max-width: 100px;
    }

    .valuation-capabilities-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .capability-item::after {
        display: none !important;
    }

    .capability-item {
        padding: 0;
        padding-bottom: 24px;
        border-bottom: 1px solid #e0e0e0;
    }

    .capability-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 430px) {
    .valuation-intro-section {
        padding: 48px 0;
        gap: 48px;
    }

    .valuation-intro-part1 {
        padding: 0 20px;
    }

    .valuation-intro-left h2 {
        font-size: 1.8rem;
    }

    .valuation-intro-part2 {
        padding: 0 20px;
    }

    .capabilities-line {
        max-width: 50px;
    }

    .capability-item h4 {
        font-size: 1.4rem;
    }
}

/* Venture Capital Growth Triggers Section */
.vc-growth-section {
    max-width: 1440px;
    margin: 0 auto;
    padding: 64px 50px;
}

.vc-growth-header {
    margin-bottom: 40px;
}

.vc-growth-heading-row {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.vc-growth-heading-row h2 {
    width: 45%;
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #141E47;
    margin: 0;
}

.vc-growth-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.vc-growth-card {
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    border: 1px solid #dbe5ff;
    border-radius: 16px;
    padding: 64px 32px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vc-growth-card h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    color: #141E47;
    margin: 0;
}

.vc-growth-card p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    color: #343f61;
    margin: 0;
}


@media screen and (max-width: 1024px) {
    .valuation-intro-part1 {
        gap: 48px;
    }

    .vc-growth-heading-row {
        flex-direction: column;
        gap: 20px;
    }

    .vc-growth-heading-row h2,
    .vc-growth-heading-row p {
        width: 100%;
    }

    .vc-growth-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .valuation-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .capability-item:nth-child(2n)::after {
        display: none;
    }

    .capability-item:nth-child(2)::after {
        display: block;
    }
}

@media screen and (max-width: 768px) {
    .valuation-intro-section {
        padding: 96px 0;
        gap: 64px;
    }

    .valuation-intro-part1 {
        flex-direction: column;
        gap: 32px;
        padding: 0 32px;
    }

    .valuation-intro-left,
    .valuation-intro-right {
        width: 100%;
    }

    .vc-growth-section {
        padding: 0 32px 64px;
    }

    .vc-growth-header {
        margin-bottom: 32px;
    }

    .vc-growth-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .vc-growth-card {
        min-height: auto;
    }

    .valuation-capabilities-header {
        gap: 16px;
    }

    .capabilities-line {
        max-width: 100px;
    }

    .valuation-capabilities-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .capability-item::after {
        display: none !important;
    }

    .capability-item {
        padding: 0;
        padding-bottom: 24px;
        border-bottom: 1px solid #e0e0e0;
    }

    .capability-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 430px) {
    .valuation-intro-section {
        padding: 64px 0;
        gap: 48px;
    }

    .valuation-intro-part1 {
        padding: 0 20px;
    }

    .vc-growth-section {
        padding: 0 20px 48px;
    }

    .vc-growth-heading-row h2 {
        font-size: 2.1rem;
    }

    .vc-growth-card {
        padding: 22px;
        border-radius: 14px;
    }

    .vc-growth-card h3 {
        font-size: 1.2rem;
    }

    .capabilities-line {
        max-width: 50px;
    }

    .capability-item h4 {
        font-size: 1.4rem;
    }
}

/* Why Choose Us - IPO Accordion Section (below 4 Cornerstones) */
.why-choose-ipo-section {
    width: 100%;
    background-color: #ffffff;
    padding: 0;
}

.why-choose-ipo-container {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    gap: 0;
}

.why-choose-ipo-image {
    width: 45%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 420px;
}

.why-choose-ipo-content {
    width: 55%;
    padding: 80px 72px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: #ffffff;
}

.why-choose-ipo-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-choose-ipo-header h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #141E47;
    margin: 0;
}

.why-choose-ipo-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-choose-ipo-item {
    border-bottom: 1px solid #E1E4EA;
    padding: 16px 0;
}

.why-choose-ipo-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 0;
    cursor: pointer;
}

.why-choose-ipo-question span:first-child {
    font-family: Urbanist, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    color: #212121;
    text-align: left;
}

.why-choose-ipo-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.why-choose-ipo-icon::before,
.why-choose-ipo-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: #141E47;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.why-choose-ipo-icon::after {
    display: none;
}

.why-choose-ipo-item.open .why-choose-ipo-icon::after {
    display: none;
}

.why-choose-ipo-item.open .why-choose-ipo-icon::before {
    transform: translate(-50%, -50%) rotate(-135deg);
}

.why-choose-ipo-answer {
    overflow: hidden;
    height: 0;
    opacity: 0;
    transition: height 300ms cubic-bezier(0.4, 0, 0.2, 1),
        opacity 220ms ease;
    margin-top: 0;
}

.why-choose-ipo-item.open .why-choose-ipo-answer {
    opacity: 1;
    margin-top: 12px;
}

.why-choose-ipo-answer p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.98rem;
    font-weight: 400;
    line-height: 1.6;
    color: #4B5563;
    margin: 0;
}

@media screen and (max-width: 1024px) {
    .why-choose-ipo-content {
        padding: 64px 56px;
    }
}

@media screen and (max-width: 768px) {
    .why-choose-ipo-section {
        padding: 64px 0;
    }

    .why-choose-ipo-container {
        flex-direction: column-reverse;
    }

    .why-choose-ipo-image {
        width: 100%;
        min-height: 360px;
    }

    .why-choose-ipo-content {
        width: 100%;
        padding: 40px 32px;
        gap: 24px;
    }

    .why-choose-ipo-header h2 {
        font-size: 2.2rem;
    }

    .why-choose-ipo-question span:first-child {
        font-size: 1.15rem;
    }
}

@media screen and (max-width: 430px) {
    .why-choose-ipo-section {
        padding: 48px 0;
    }

    .why-choose-ipo-image {
        min-height: 280px;
    }

    .why-choose-ipo-content {
        padding: 32px 20px;
    }

    .why-choose-ipo-header h2 {
        font-size: 1.8rem;
    }

    .why-choose-ipo-question span:first-child {
        font-size: 1.05rem;
    }

    .why-choose-ipo-icon {
        width: 28px;
        height: 28px;
    }
}

/* Insights Section */
.insights-section {
    padding: 96px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.insights-section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
}

.insights-section-label {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
}

.insights-section-header h2 {
    width: 60%;
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #212121;
    margin: 0;
}

.insights-explore-btn {
    align-self: flex-start;
    padding: 12px 24px;
    border: 1px solid #212121;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #212121;
    background-color: #ffffff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.insights-explore-btn:hover {
    background-color: #212121;
    color: #ffffff;
}

.insights-content-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.insights-main-col {
    width: 55%;
}

.insights-side-col {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insights-featured-post {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 24px;
}

.insights-featured-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.insights-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.insights-featured-image:hover img {
    transform: scale(1.05);
}

.insights-featured-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insights-category {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insights-featured-content h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.3;
    color: #212121;
    margin: 0;
}

.insights-featured-content h3 a {
    color: #212121;
    text-decoration: none;
    transition: color 0.3s ease;
}

.insights-featured-content h3 a:hover {
    color: #2B46BA;
}

.insights-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    color: #666;
}

.insights-meta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.insights-read-time {
    color: #666;
}

.insights-separator {
    color: #666;
    margin: 0 4px;
}

.insights-date {
    color: #666;
}

.insights-side-post {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 16px;
}

.insights-side-image {
    width: 30%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.insights-side-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.insights-side-image:hover img {
    transform: scale(1.05);
}

.insights-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insights-side-image:hover .insights-video-overlay {
    opacity: 1;
}

.insights-video-overlay svg {
    width: 32px;
    height: 32px;
}

.insights-side-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.insights-side-content h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #212121;
    margin: 0;
}

.insights-side-content h3 a {
    color: #212121;
    text-decoration: none;
    transition: color 0.3s ease;
}

.insights-side-content h3 a:hover {
    color: #2B46BA;
}

.insights-side-content .insights-meta {
    font-size: 0.8rem;
}

@media screen and (max-width: 1024px) {
    .insights-content-wrapper {
        flex-direction: column;
        gap: 48px;
    }

    .insights-main-col,
    .insights-side-col {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .insights-section {
        padding: 64px 0;
    }

    .insights-section-header {
        margin-bottom: 48px;
    }

    .insights-section-header h2 {
        width: 90%;
    }

    .insights-side-content h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 430px) {
    .insights-section {
        padding: 48px 0;
    }

    .insights-section-header {
        margin-bottom: 32px;
    }

    .insights-side-post {
        gap: 12px;
    }

    .insights-category,
    .insights-read-time,
    .insights-separator,
    .insights-date {
        font-size: 0.75rem;
    }

}


/* 4 Cornerstones Section */
.cornerstones-section {
    width: 100%;
    background-color: #000000;
    padding: 0;
}

.cornerstones-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    gap: 0;
    align-items: stretch;
}

.cornerstones-left {
    width: 40%;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cornerstones-right {
    width: 60%;
    padding: 128px 48px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.cornerstones-right h2 {
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
}

.cornerstones-title-underline {
    width: 80px;
    height: 4px;
    background-color: #fff;
    margin-top: -32px;
}

.cornerstones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.cornerstones-card {
    background-color: #101010;
    padding: 64px 32px;
    border-radius: 8px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cornerstones-card-number {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    font-family: Urbanist, sans-serif;
    font-size: 8rem;
    font-weight: 700;
    line-height: 1;
    color: #ffffff;
    opacity: 0.1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 0;
}

.cornerstones-card h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
}

.cornerstones-card p {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
}

@media screen and (max-width: 1024px) {
    .cornerstones-section{
        padding: 0;
    }
    
    .cornerstones-container {
        padding: 0px;
    }

    .cornerstones-right {
        padding: 60px 40px;
    }
}

@media screen and (max-width: 768px) {
    .cornerstones-section {
        padding: 0;
    }

    .cornerstones-container {
        flex-direction: column;
        padding: 0;
    }

    .cornerstones-left {
        width: 100%;
        height: 500px;
    }

    .cornerstones-right {
        width: 100%;
        padding: 48px 32px;
        gap: 32px;
    }

    .cornerstones-right h2 {
        font-size: 2.2rem;
    }

    .cornerstones-grid {
        gap: 20px;
    }

    .cornerstones-card {
        padding: 28px 24px;
    }

    .cornerstones-card-number {
        font-size: 6rem;
    }
}

@media screen and (max-width: 430px) {
    .cornerstones-right {
        padding: 64px 20px;
        gap: 24px;
    }

    .cornerstones-right h2 {
        font-size: 1.8rem;
    }

    .cornerstones-title-underline {
        width: 60px;
        height: 3px;
    }

    .cornerstones-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cornerstones-card {
        padding: 48px 32px;
        gap: 12px;
    }

    .cornerstones-card-number {
        font-size: 6.8rem;
    }

    .cornerstones-card h3 {
        font-size: 1.4rem;
    }

    .cornerstones-card p {
        font-size: 0.9rem;
    }
}

/* Insights Section */
.insights-section {
    padding: 32px 0;
    max-width: 1440px;
    margin: 0 auto;
}

.insights-section-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 64px;
}

.insights-section-label {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #666;
}

.insights-section-header h2 {
    width: 60%;
    font-family: Urbanist, sans-serif;
    font-size: 2.617rem;
    font-weight: 600;
    line-height: 1.2;
    color: #212121;
    margin: 0;
}

.insights-explore-btn {
    align-self: flex-start;
    padding: 12px 24px;
    border: 1px solid #212121;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: #212121;
    background-color: #ffffff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.insights-explore-btn:hover {
    background-color: #212121;
    color: #ffffff;
}

.insights-content-wrapper {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.insights-main-col {
    width: 55%;
}

.insights-side-col {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.insights-featured-post {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 24px;
}

.insights-featured-image {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.insights-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.insights-featured-image:hover img {
    transform: scale(1.05);
}

.insights-featured-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insights-category {
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insights-featured-content h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.3;
    color: #212121;
    margin: 0;
}

.insights-featured-content h3 a {
    color: #212121;
    text-decoration: none;
    transition: color 0.3s ease;
}

.insights-featured-content h3 a:hover {
    color: #2B46BA;
}

.insights-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-size: 0.875rem;
    color: #666;
}

.insights-meta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.insights-read-time {
    color: #666;
}

.insights-separator {
    color: #666;
    margin: 0 4px;
}

.insights-date {
    color: #666;
}

.insights-side-post {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 16px;
}

.insights-side-image {
    width: 30%;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.insights-side-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.insights-side-image:hover img {
    transform: scale(1.05);
}

.insights-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insights-side-image:hover .insights-video-overlay {
    opacity: 1;
}

.insights-video-overlay svg {
    width: 32px;
    height: 32px;
}

.insights-side-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.insights-side-content h3 {
    font-family: Urbanist, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    color: #212121;
    margin: 0;
}

.insights-side-content h3 a {
    color: #212121;
    text-decoration: none;
    transition: color 0.3s ease;
}

.insights-side-content h3 a:hover {
    color: #2B46BA;
}

.insights-side-content .insights-meta {
    font-size: 0.8rem;
}

@media screen and (max-width: 1024px) {
    .insights-content-wrapper {
        flex-direction: column;
        gap: 48px;
    }

    .insights-main-col,
    .insights-side-col {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .insights-section {
        padding: 64px 0;
    }

    .insights-section-header {
        margin-bottom: 48px;
    }

    .insights-section-header h2 {
        width: 90%;
    }

    .insights-side-content h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 430px) {
    .insights-section {
        padding: 48px 0;
    }

    .insights-section-header {
        margin-bottom: 32px;
    }

    .insights-side-post {
        gap: 12px;
    }

    .insights-category,
    .insights-read-time,
    .insights-separator,
    .insights-date {
        font-size: 0.75rem;
    }
}


/* FAQ Section */

.faq-container {
    max-width: 1440px;
    margin: 0 auto;
    margin-bottom: 64px;
}

.faq-header {
    padding: 64px 0;
}

.faq-header>h2 {
    font-family: Urbanist;
    font-size: 2.617rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    color: #141E47;
}

.faqs {
    max-width: 1440px;
    margin: 0 auto;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-col {
    width: 100%;
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    padding: 20px 4px;
    border-bottom: 1px solid #a0a9cf;
}

.faq-item.open .faq-answer {
    opacity: 1;
    padding: 10px;
}

.faq-question svg {
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question svg {
    transform: rotate(45deg);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    cursor: pointer;
}

.faq-question>h2 {
    font-family: Urbanist;
    font-size: 1.618rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 400ms cubic-bezier(0.4, 0, 0.2, 1),
        opacity 250ms ease;
    padding: 0 10px;
}

.faq-answer>p {
    font-family: Plus Jakarta Sans;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.618;
    text-align: left;
    color: var(--body-text);
}

.faq-answer ul {
    list-style-type: disc;
    padding: 10px 20px;
    /* padding-left: 20px; */
}

.faq-answer ul li {
    font-family: Plus Jakarta Sans;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.618;
    color: var(--body-text);
}

@media screen and (max-width: 768px) {
    .faqs {
        padding: 20px 0;
        flex-direction: column;
    }

    .faq-col {
        width: 100%;
    }

    .faq-question>h2 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 430px) {

    .faq-header {
        padding: 48px 0;
    }

    .faq-item {
        padding: 24px 4px;
    }

    .faq-question>svg {
        width: 24px;
        height: 24px;

    }

    .faq-question>h2 {
        width: 80%;
        font-size: 1.2rem;
        line-height: 1.2;
    }

    .faq-answer>p {
        font-size: 1rem;
    }
}